1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
C3: Hello, World!
http://www.c3-lang.org/
*/
module main;
import std::io;
fn int main(int argc, char** argv)
{
io::print("Hello, World!\n");
return 0;
}
Enter to Rename, <Shift>+Enter to Preview